home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 23 / Amiga Format AFCD23 (Feb 1998, Issue 107).iso / -screenplay- / utilities / hd_installers / o-z / rickdangerous / install-rickdangerous next >
Text File  |  1997-12-01  |  2KB  |  95 lines

  1.  
  2. ;----------------------------
  3.  
  4. ;try to figure out a place where the user usually installs his games
  5. (if (exists "Games:" (noreq) )
  6.     (set @default-dest "Games:")
  7.     (if (exists "SYS:Games" (noreq) )
  8.         (set @default-dest "SYS:Games")
  9.         (if (exists "Work:Games" (noreq) )
  10.             (set @default-dest "Work:Games")
  11.             (if (exists "JEUX:" (noreq) )
  12.                (set @default-dest "JEUX:")
  13.                (set @default-dest "SYS:")
  14.             )
  15.         )
  16.     )
  17. )
  18.  
  19.  
  20. (set @default-dest
  21. (askdir
  22.     (prompt ("Where should %s installed ?\nA drawer \"%s\" will automatically created." @app-name @app-name))
  23.     (help @askdir-help)
  24.     (default @default-dest)
  25.     (disk)
  26. )
  27. )
  28.  
  29. (set #dest (tackon @default-dest @app-name))
  30. (set #CI_unit
  31.     (askchoice
  32.         (prompt "From which disk unit do you want\nto install the game")
  33.         (help    @askoptions-help)
  34.         (choices
  35.            "DF0:"
  36.            "DF1:"
  37.            "DF2:"
  38.            "DF3:"
  39.         )
  40.     )
  41. )
  42.  
  43. (set #CI_drive ("DF%ld:" #CI_unit))
  44.  
  45. (set #Rickd_ver
  46.     (askchoice
  47.         (prompt "From which disk unit do you want\nto install the game")
  48.         (help    @askoptions-help)
  49.         (choices
  50.            "Rick Dangerous - Full priced & Budget"
  51.            "Rick Dangerous - UBI Compilation"
  52.         )
  53.     )
  54. )
  55.  
  56.  
  57. (makedir #dest
  58.     (help @makedir-help)
  59.     (infos)
  60. )
  61.  
  62. ;----------------------------
  63.  
  64. (copyfiles
  65.     (help @copyfiles-help)
  66.     (source "RickDangHD")
  67.     (dest #dest)
  68.     (infos)
  69. )
  70.  
  71.  
  72. (copyfiles
  73.     (help @copyfiles-help)
  74.     (source "Rickhd.readme")
  75.     (dest #dest)
  76.     (infos)
  77. )
  78.  
  79. (message ("\nInsert %s disk into drive %s !" @app-name #CI_drive))
  80.     (if (= #Rickd_ver 0)
  81.     (if
  82.         (= 0 (run ("rick2file %ld \"%s/rick.d1\" 9 67 1 >con:0/0/450/200//CLOSE/WAIT" #CI_unit #dest )))
  83.         ("")
  84.         (abort "\"rick2file\" must be in your PATH !")
  85.     ))
  86.     (if (= #Rickd_ver 1)
  87.     (if
  88.         (= 0 (run ("rick2file %ld \"%s/rick.d1\" 18 126 2 >con:0/0/450/200//CLOSE/WAIT" #CI_unit #dest )))
  89.         ("")
  90.         (abort "\"rick2file\" must be in your PATH !")
  91.     ))
  92.  
  93. (exit)
  94.  
  95.